200
|
I've noticed that the toolbar is cut when perform scrolling. Is it possible to change that shape

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ArrangeItemsAs := 513/*exArrangeItemsScroll+exArrangeItemsHorizontal*/
oToolBar:VisualAppearance():Add(1,"gBFLBCJwBAEHhEJAAEhIDhAxGAyg0HG0Og40HIyiwAGY1GMJiYAf8jAEhhUnAAyhEqg8hk0oAsIjYxHAwmYwHEbGY2GEhGkMlFBlAOhAJhEuoUHjcbGQ1EtMp0hGsbGowEsvpNBlkpo9ZoNQp8rqMIqdkqwCr1ZrdbrFpsFvs1hg9VuVCjdBA0IoElhFog6zbDykUkhsPms3nMInc9hA0mNpoVrruQpdiutNq9kqlWtuQg+Sluewufp1gqWbEt+0UK0F81YAuGkut01F3lF7vF6yYA1Ujf4ATjNd8KmeHh84n1MGI1zt9rN7vOhg+9knB4ejAE0m3HHHJlfL1VB5sH6G76m/63Ey2xAG0uMbkIbUDh3me1vjoV7vYIhBQNIxjoOo5DKGKQj8hAhCbA6ThshAUN0g7or4DCFCQ14AHATIAHkbBZt83xxFCDcMw3DsQRFEINm8SQAHydpuxTEh4GkUzfHATYARnGsPn+d5mk5HkPv4g7/QBAQyhk1UFgB" +;
"BMloTBqDwe8iEQkg0KITCzXyDDhZxI30uRJFMXG7FYARTFLfR1MMRSDNUcSC30fE5IYASLAMBhmjZDQQJs9wZB0qQhCaFChC81g3M8RRuAE5IPMENRjDUdN8g8vw7MtJx5SseTHODCTpO0jp+hE/SZPqUSgAEpABCS9ytQkLyDTtPU2f8uUxGkg0dDtDxlXLCUPRMRxxRoAHW2wAICA==")
oToolBar:SetProperty("Background",119/*exScrollViewBorder*/,0x1000000)
oItems := oToolBar:Items()
oItems:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 128,128,128 } ) , .F. ))
oItem := oItems:Add("Expand",2)
oItem:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem:Check := .T.
oItem:ShowPopupOnChecked := .T.
oItems1 := oItem:Items()
oItems1:Padding := "22,0,0,0"
oItems1:Add("Radio 1"):Radio := .T.
oItems1:Add("Radio 2"):Radio := .T.
oItem1 := oItems1:Add("Radio 3")
oItem1:Radio := .T.
oItem1:Checked := .T.
oItem:Checked := .T.
oItems:Add(""):ToString := "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=2][chk=1])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
199
|
I've noticed that the toolbar is cut when perform scrolling. Is it possible to prevent that

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ArrangeItemsAs := 513/*exArrangeItemsScroll+exArrangeItemsHorizontal*/
oToolBar:SetProperty("Background",119/*exScrollViewBorder*/,-1)
oItems := oToolBar:Items()
oItems:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 240,240,240 } ) , .F. ))
oItem := oItems:Add("Expand",2)
oItem:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem:Check := .T.
oItem:ShowPopupOnChecked := .T.
oItems1 := oItem:Items()
oItems1:Padding := "22,0,0,0"
oItems1:Add("Radio 1"):Radio := .T.
oItems1:Add("Radio 2"):Radio := .T.
oItem1 := oItems1:Add("Radio 3")
oItem1:Radio := .T.
oItem1:Checked := .T.
oItem:Checked := .T.
oItems:Add(""):ToString := "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=2][chk=1])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
198
|
How can I scroll the items within the toolbar

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ArrangeItemsAs := 513/*exArrangeItemsScroll+exArrangeItemsHorizontal*/
oItems := oToolBar:Items()
oItems:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 240,240,240 } ) , .F. ))
oItem := oItems:Add("Expand",2)
oItem:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem:Check := .T.
oItem:ShowPopupOnChecked := .T.
oItems1 := oItem:Items()
oItems1:Padding := "22,0,0,0"
oItems1:Add("Radio 1"):Radio := .T.
oItems1:Add("Radio 2"):Radio := .T.
oItem1 := oItems1:Add("Radio 3")
oItem1:Radio := .T.
oItem1:Checked := .T.
oItem:Checked := .T.
oItems:Add(""):ToString := "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=2][chk=1])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
197
|
How can I show an item aligned to the bottom size of the toolbar

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ArrangeItemsAs := 1/*exArrangeItemsHorizontal*/
oToolBar:Items():ToString := "C1[chk],C2[chk]"
oItem := oToolBar:Items():Add("R")
oItem:Check := .T.
oItem:Checked := .T.
oItem:Y := "height - iheight"
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
196
|
How can I show an item aligned to the right of the toolbar

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ArrangeItemsAs := 1/*exArrangeItemsHorizontal*/
oToolBar:Items():ToString := "C1[chk],C2[chk]"
oItem := oToolBar:Items():Add("R")
oItem:Check := .T.
oItem:Checked := .T.
oItem:X := "width - iwidth"
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
195
|
How can I arrange horizontally the items on the toolbar

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ArrangeItemsAs := 1/*exArrangeItemsHorizontal*/
oItems := oToolBar:Items()
oItem := oItems:Add("Expand",2)
oItem:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem:Check := .T.
oItem:ShowPopupOnChecked := .T.
oItems1 := oItem:Items()
oItems1:Padding := "22,0,0,0"
oItems1:Add("Radio 1"):Radio := .T.
oItems1:Add("Radio 2"):Radio := .T.
oItem1 := oItems1:Add("Radio 3")
oItem1:Radio := .T.
oItem1:Checked := .T.
oItem:Checked := .T.
oItems:Add(""):ToString := "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=2][chk=1])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
194
|
How can I display the drop down panel to a specified location only
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:PopupAppearance := 6/*ShadowBorder*/
oItems := oToolBar:Items()
oItem := oItems:Add("Popup",2,100)
oItem:ShowPopupArrow := .F.
oItem:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem:ShowPopupOffset := "0:screen,0:screen"
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
193
|
How can I displays the drop down bellow the control, rather than item itself

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1,oItems2
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:PopupAppearance := 6/*ShadowBorder*/
oItems := oToolBar:Items()
oItem := oItems:Add("Popup <b>1",2,100)
oItem:ShowPopupArrow := .F.
oItem:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem:ShowPopupOffset := "0,0:control"
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItem1 := oItems:Add("Popup <b>2",2,200)
oItem1:GroupPopup := 1/*exGroupPopup*/
oItems2 := oItem1:Items()
oItems2:Add("Item 2")
oItems2:Add("Item 3")
oItems2:Add("Item 4")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
192
|
How can I change the visual appearance of the progress bar

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:VisualAppearance():Add(1,"c:\exontrol\images\normal.ebn")
oToolBar:SetProperty("Background",260/*0x104+*/,0x1000000)
oItems := oToolBar:Items()
oItem := oItems:Add("Progress")
oItem:AllowEdit := 4/*exItemEditProgress*/
oItem:EditWidth := -128
oItem:EditValue := 25
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
191
|
How can I change the progress's color

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SetProperty("Background",260/*0x104+*/,AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItems := oToolBar:Items()
oItem := oItems:Add("Progress")
oItem:AllowEdit := 4/*exItemEditProgress*/
oItem:EditWidth := -128
oItem:EditValue := 25
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
190
|
I am using the Item.Visible property on False to hide the item, but the editor is still visible
PROCEDURE OnCheckItem(oToolBar,Itm)
LOCAL oItem
oItem := oToolBar:Items:Item(1000)
oItem:Visible := .T.
oItem:AllowEdit := 260/*exItemEditReadOnly+exItemEditProgress*/
oToolBar:Refresh()
RETURN
PROCEDURE OnUncheckItem(oToolBar,Itm)
LOCAL oItem
oItem := oToolBar:Items:Item(1000)
oItem:Visible := .F.
oItem:AllowEdit := 0/*exItemDisableEdit*/
oToolBar:Refresh()
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1,oItem2
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:CheckItem := {|Itm| OnCheckItem(oToolBar,Itm)} /*Occurs when the user checks the item.*/
oToolBar:UncheckItem := {|Itm| OnUncheckItem(oToolBar,Itm)} /*Occurs when the user unchecks the item.*/
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItems1 := oItem:Items()
oItems1:Add("Visible")
oItem1 := oItems1:Add("")
oItem1:Check := .T.
oItem1:Checked := .T.
oItem2 := oItems1:Add("Item 2",,1000)
oItem2:ItemHeight := 18
oItem2:Caption := "Percent"
oItem2:AllowEdit := 260/*exItemEditReadOnly+exItemEditProgress*/
oItem2:EditValue := 50
oItem2:Visible := .T.
oItems1:Add("Visible")
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
189
|
How can I change the color of a disabled item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Disabled",2,0)
oItem:SetProperty("ForeColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItem:Items():Add("")
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItem:ShowPopupArrow := .F.
oItems:Add("Disabled"):Enabled := .F.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
188
|
Microsoft Windows 8.1 - Ribbon Like

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItem,oItem1,oItem10,oItem11,oItem12,oItem13,oItem14,oItem15,oItem16,oItem17,oItem18,oItem2,oItem3,oItem4,oItem5,oItem6,oItem7,oItem8,oItem9,var_Item,var_Item1,var_Item2,var_Item3,var_Item4
LOCAL oItems,oItems1,oItems10,oItems11,oItems12,oItems13,oItems2,oItems3,oItems4,oItems5,oItems6,oItems7,oItems8,oItems9
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:ToString := "[id=0][group=0x03](),[id=-99][bg=0x01000000][group=0x03][itemspad=4,4,4,4]([id=9000])"
oItems1 := oItems:Item(0):Items()
oItems1:Add("",0,0):Padding := "8,0,0,0"
var_Item3 := oItems1:Add("New Page")
var_Item3:ToString := "[id=0][typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][pad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
var_Item3:ID := 200
var_Item3:Caption := "Page1"
var_Item3:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem := var_Item3:Items:Item(0)
var_Item := oItem:Items:Add("New Group")
var_Item:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item:Caption := "<b><font ;14>A"
oItems2 := var_Item:Items()
oItems2:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Horizontal`,align=0x11]"
oItem1 := oItems2:Add("",2)
oItem1:GroupPopup := 17/*exGroupPopupEqualWidth+exGroupPopup*/
oItem1:Caption := ""
oItems3 := oItem1:Items()
oItem2 := oItems3:Add("R1")
oItem2:RadioGroup := 100
oItem2:Radio := .T.
oItem2:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem2:Checked := .F.
oItem3 := oItems3:Add("R2")
oItem3:RadioGroup := 100
oItem3:Radio := .T.
oItem3:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem3:Checked := .T.
oItem4 := oItems3:Add("R3")
oItem4:RadioGroup := 100
oItem4:Radio := .T.
oItem4:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem4:Checked := .F.
var_Item1 := oItem:Items:Add("New Group")
var_Item1:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item1:Caption := "<b><font ;14>B"
oItems4 := var_Item1:Items()
oItems4:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Vertical`,align=0x11]"
oItem5 := oItems4:Add("",2)
oItem5:GroupPopup := 289/*exGroupPopupVertical+exGroupPopupEqualHeight+exGroupPopup*/
oItem5:Caption := ""
oItems5 := oItem5:Items()
oItem6 := oItems5:Add("C1")
oItem6:Check := .T.
oItem6:Checked := .T.
oItem7 := oItems5:Add("C2")
oItem7:Check := .T.
oItem7:Checked := .F.
oItem8 := oItems5:Add("C3")
oItem8:Check := .T.
oItem8:Checked := .T.
oItem:Items():Add("",0,0):Padding := "4,0,0,0"
var_Item2 := oItem:Items:Add("New Group")
var_Item2:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item2:Caption := ""
oItems6 := var_Item2:Items()
oItems6:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Mixt`,align=0x11]"
oItem9 := oItems6:Add("",0)
oItem9:AllowEdit := 1027/*exItemEditVertical+exItemEditSlider*/
oItem9:ItemHeight := 76
oItem9:EditBorder := 0/*exEditBorderNone*/
oItem9:EditValue := 25
oItem10 := oItems6:Add("",2)
oItem10:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem10:Caption := ""
oItems7 := oItem10:Items()
oItem11 := oItems7:Add("",2)
oItem11:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems8 := oItem11:Items()
oItem12 := oItems8:Add("Button1",2)
oItem12:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems9 := oItem12:Items()
oItems9:Add("Item 1")
oItems9:Add("Item 2")
oItems9:Add("Item 3")
oItems8:Add("",0,0):Padding := "4,0,0,0"
oItem13 := oItems8:Add("Button2",2)
oItem13:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems10 := oItem13:Items()
oItems10:Add("Item 4")
oItems10:Add("Item 5")
oItems10:Add("Item 6")
oItem14 := oItems7:Add("Popup",2)
oItem14:Alignment := 1/*exCenter*/
oItems11 := oItem14:Items()
oItems11:Add("Item 7"):Check := .T.
oItems11:Add("Item 8")
oItems12 := oItems11:Add("Item 9",2):Items()
oItems12:Add("Item 10")
oItems12:Add("Item 11")
oItems12:Add("Item 12")
var_Item4 := oItems1:Add("New Page")
var_Item4:ToString := "[id=0][typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][pad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
var_Item4:ID := 300
var_Item4:Caption := "Page2"
var_Item4:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem15 := var_Item4:Items:Item(0)
oItems13 := oItem15:Items()
oItem16 := oItems13:Add("S1")
oItem16:ItemHeight := 88
oItem16:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem16:EditValue := 25
oItem17 := oItems13:Add("S2")
oItem17:ItemHeight := 88
oItem17:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem17:EditValue := 50
oItem18 := oItems13:Add("S3")
oItem18:ItemHeight := 88
oItem18:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem18:EditValue := 75
oItems1:Add("",0,0):Padding := "8,0,0,0"
oToolBar:PopupFlatAppearance := .F.
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_background.ebn")
oAppearance:Add(2,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_groupt.ebn")
oAppearance:Add(12,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_hot.ebn")
oAppearance:Add(14,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_select.ebn")
oAppearance:Add(17,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_tab.ebn")
oAppearance:Add(18,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_tabhot.ebn")
oAppearance:Add(32,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_check0.ebn")
oAppearance:Add(33,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_check1.ebn")
oAppearance:Add(34,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_buttonu.ebn")
oAppearance:Add(35,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_buttond.ebn")
oToolBar:Appearance := 16777216/*0x1000000+*/
oToolBar:SetProperty("Background",64/*exToolTipAppearance*/,oToolBar:Appearance())
oToolBar:SetProperty("SelBackColor",0xe000000)
oToolBar:SetProperty("Background",110/*exMenuHotBackColor*/,0xc000000)
oToolBar:SetProperty("Background",112/*exMenuSelHotBackColor*/,0x23000000)
oToolBar:SetProperty("Background",2/*0x2+*/,0x22000000)
oToolBar:SetProperty("Background",3/*0x3+*/,0x23000000)
oToolBar:SetProperty("Background",70/*exCheckBoxState0*/,0x20000000)
oToolBar:SetProperty("Background",71/*exCheckBoxState1*/,0x21000000)
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
187
|
Microsoft Paint - Ribbon Like

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItem,oItem1,oItem10,oItem11,oItem12,oItem13,oItem14,oItem15,oItem16,oItem17,oItem18,oItem2,oItem3,oItem4,oItem5,oItem6,oItem7,oItem8,oItem9,var_Item,var_Item1,var_Item2,var_Item3,var_Item4
LOCAL oItems,oItems1,oItems10,oItems11,oItems12,oItems13,oItems2,oItems3,oItems4,oItems5,oItems6,oItems7,oItems8,oItems9
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:ToString := "[id=0][group=0x03](),[id=-99][bg=0x01000000][group=0x03][itemspad=4,4,4,4]([id=9000])"
oItems1 := oItems:Item(0):Items()
oItems1:Add("",0,0):Padding := "8,0,0,0"
var_Item3 := oItems1:Add("New Page")
var_Item3:ToString := "[id=0][typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][pad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
var_Item3:ID := 200
var_Item3:Caption := "Page1"
var_Item3:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem := var_Item3:Items:Item(0)
var_Item := oItem:Items:Add("New Group")
var_Item:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item:Caption := "<b><font ;14>A"
oItems2 := var_Item:Items()
oItems2:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Horizontal`,align=0x11]"
oItem1 := oItems2:Add("",2)
oItem1:GroupPopup := 17/*exGroupPopupEqualWidth+exGroupPopup*/
oItem1:Caption := ""
oItems3 := oItem1:Items()
oItem2 := oItems3:Add("R1")
oItem2:RadioGroup := 100
oItem2:Radio := .T.
oItem2:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem2:Checked := .F.
oItem3 := oItems3:Add("R2")
oItem3:RadioGroup := 100
oItem3:Radio := .T.
oItem3:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem3:Checked := .T.
oItem4 := oItems3:Add("R3")
oItem4:RadioGroup := 100
oItem4:Radio := .T.
oItem4:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem4:Checked := .F.
var_Item1 := oItem:Items:Add("New Group")
var_Item1:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item1:Caption := "<b><font ;14>B"
oItems4 := var_Item1:Items()
oItems4:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Vertical`,align=0x11]"
oItem5 := oItems4:Add("",2)
oItem5:GroupPopup := 289/*exGroupPopupVertical+exGroupPopupEqualHeight+exGroupPopup*/
oItem5:Caption := ""
oItems5 := oItem5:Items()
oItem6 := oItems5:Add("C1")
oItem6:Check := .T.
oItem6:Checked := .T.
oItem7 := oItems5:Add("C2")
oItem7:Check := .T.
oItem7:Checked := .F.
oItem8 := oItems5:Add("C3")
oItem8:Check := .T.
oItem8:Checked := .T.
oItem:Items():Add("",0,0):Padding := "4,0,0,0"
var_Item2 := oItem:Items:Add("New Group")
var_Item2:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item2:Caption := ""
oItems6 := var_Item2:Items()
oItems6:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Mixt`,align=0x11]"
oItem9 := oItems6:Add("",0)
oItem9:AllowEdit := 1027/*exItemEditVertical+exItemEditSlider*/
oItem9:ItemHeight := 76
oItem9:EditBorder := 0/*exEditBorderNone*/
oItem9:EditValue := 25
oItem10 := oItems6:Add("",2)
oItem10:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem10:Caption := ""
oItems7 := oItem10:Items()
oItem11 := oItems7:Add("",2)
oItem11:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems8 := oItem11:Items()
oItem12 := oItems8:Add("Button1",2)
oItem12:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems9 := oItem12:Items()
oItems9:Add("Item 1")
oItems9:Add("Item 2")
oItems9:Add("Item 3")
oItems8:Add("",0,0):Padding := "4,0,0,0"
oItem13 := oItems8:Add("Button2",2)
oItem13:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems10 := oItem13:Items()
oItems10:Add("Item 4")
oItems10:Add("Item 5")
oItems10:Add("Item 6")
oItem14 := oItems7:Add("Popup",2)
oItem14:Alignment := 1/*exCenter*/
oItems11 := oItem14:Items()
oItems11:Add("Item 7"):Check := .T.
oItems11:Add("Item 8")
oItems12 := oItems11:Add("Item 9",2):Items()
oItems12:Add("Item 10")
oItems12:Add("Item 11")
oItems12:Add("Item 12")
var_Item4 := oItems1:Add("New Page")
var_Item4:ToString := "[id=0][typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][pad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
var_Item4:ID := 300
var_Item4:Caption := "Page2"
var_Item4:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem15 := var_Item4:Items:Item(0)
oItems13 := oItem15:Items()
oItem16 := oItems13:Add("S1")
oItem16:ItemHeight := 88
oItem16:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem16:EditValue := 25
oItem17 := oItems13:Add("S2")
oItem17:ItemHeight := 88
oItem17:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem17:EditValue := 50
oItem18 := oItems13:Add("S3")
oItem18:ItemHeight := 88
oItem18:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem18:EditValue := 75
oItems1:Add("",0,0):Padding := "8,0,0,0"
oToolBar:PopupFlatAppearance := .F.
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_background.ebn")
oAppearance:Add(2,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_groupt.ebn")
oAppearance:Add(3,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_groupo.ebn")
oAppearance:Add(4,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_grouphot.ebn")
oAppearance:Add(5,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_frameh.ebn")
oAppearance:Add(6,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framehs.ebn")
oAppearance:Add(7,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framehi.ebn")
oAppearance:Add(8,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framehe.ebn")
oAppearance:Add(9,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framevs.ebn")
oAppearance:Add(10,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framevi.ebn")
oAppearance:Add(11,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_frameve.ebn")
oAppearance:Add(12,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_select.ebn")
oAppearance:Add(13,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_bordert.ebn")
oAppearance:Add(14,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_buttond.ebn")
oAppearance:Add(15,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_buttonu.ebn")
oAppearance:Add(16,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_tab.ebn")
oAppearance:Add(17,"CP:16 0 0 0 1")
oAppearance:Add(18,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_tabhot.ebn")
oAppearance:Add(19,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_tabselhot.ebn")
oAppearance:Add(20,"CP:19 0 0 0 1")
oToolBar:LocalAppearance := 6/*ShadowBorder*/
oToolBar:Appearance := 16777216/*0x1000000+*/
oToolBar:SetProperty("ForeColor",AutomationTranslateColor( GraMakeRGBColor ( { 21,66,139 } ) , .F. ))
oToolBar:SetProperty("SelBackColor",0xe000000)
oToolBar:SetProperty("Background",64/*exToolTipAppearance*/,oToolBar:Appearance())
oToolBar:SetProperty("Background",2/*0x2+*/,0xd000000)
oToolBar:SetProperty("Background",105/*exGroupPopupFrameSingle*/,0x5000000)
oToolBar:SetProperty("Background",106/*exGroupPopupFrameHStart*/,0x6000000)
oToolBar:SetProperty("Background",107/*exGroupPopupFrameHIntermediate*/,0x7000000)
oToolBar:SetProperty("Background",108/*exGroupPopupFrameHEnd*/,0x8000000)
oToolBar:SetProperty("Background",116/*exGroupPopupFrameVStart*/,0x9000000)
oToolBar:SetProperty("Background",117/*exGroupPopupFrameVIntermediate*/,0xa000000)
oToolBar:SetProperty("Background",118/*exGroupPopupFrameVEnd*/,0xb000000)
oToolBar:SetProperty("Background",110/*exMenuHotBackColor*/,0xc000000)
oToolBar:SetProperty("Background",112/*exMenuSelHotBackColor*/,0xf000000)
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
186
|
Microsoft Office - Ribbon Like

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItem,oItem1,oItem10,oItem11,oItem12,oItem13,oItem14,oItem15,oItem16,oItem17,oItem18,oItem2,oItem3,oItem4,oItem5,oItem6,oItem7,oItem8,oItem9,var_Item,var_Item1,var_Item2,var_Item3,var_Item4
LOCAL oItems,oItems1,oItems10,oItems11,oItems12,oItems13,oItems2,oItems3,oItems4,oItems5,oItems6,oItems7,oItems8,oItems9
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:ToString := "[id=0][group=0x03](),[id=-99][bg=0x01000000][group=0x03][itemspad=4,4,4,4]([id=9000])"
oItems1 := oItems:Item(0):Items()
oItems1:Add("",0,0):Padding := "8,0,0,0"
var_Item3 := oItems1:Add("New Page")
var_Item3:ToString := "[id=0][typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][pad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
var_Item3:ID := 200
var_Item3:Caption := "Page1"
var_Item3:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem := var_Item3:Items:Item(0)
var_Item := oItem:Items:Add("New Group")
var_Item:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item:Caption := "<b><font ;14>A"
oItems2 := var_Item:Items()
oItems2:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Horizontal`,align=0x11]"
oItem1 := oItems2:Add("",2)
oItem1:GroupPopup := 17/*exGroupPopupEqualWidth+exGroupPopup*/
oItem1:Caption := ""
oItems3 := oItem1:Items()
oItem2 := oItems3:Add("R1")
oItem2:RadioGroup := 100
oItem2:Radio := .T.
oItem2:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem2:Checked := .F.
oItem3 := oItems3:Add("R2")
oItem3:RadioGroup := 100
oItem3:Radio := .T.
oItem3:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem3:Checked := .T.
oItem4 := oItems3:Add("R3")
oItem4:RadioGroup := 100
oItem4:Radio := .T.
oItem4:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem4:Checked := .F.
var_Item1 := oItem:Items:Add("New Group")
var_Item1:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item1:Caption := "<b><font ;14>B"
oItems4 := var_Item1:Items()
oItems4:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Vertical`,align=0x11]"
oItem5 := oItems4:Add("",2)
oItem5:GroupPopup := 289/*exGroupPopupVertical+exGroupPopupEqualHeight+exGroupPopup*/
oItem5:Caption := ""
oItems5 := oItem5:Items()
oItem6 := oItems5:Add("C1")
oItem6:Check := .T.
oItem6:Checked := .T.
oItem7 := oItems5:Add("C2")
oItem7:Check := .T.
oItem7:Checked := .F.
oItem8 := oItems5:Add("C3")
oItem8:Check := .T.
oItem8:Checked := .T.
oItem:Items():Add("",0,0):Padding := "4,0,0,0"
var_Item2 := oItem:Items:Add("New Group")
var_Item2:ToString := "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
var_Item2:Caption := ""
oItems6 := var_Item2:Items()
oItems6:BackgroundExt := "bottom[16,text=`<fgcolor A0A0A0><font ;8>Mixt`,align=0x11]"
oItem9 := oItems6:Add("",0)
oItem9:AllowEdit := 1027/*exItemEditVertical+exItemEditSlider*/
oItem9:ItemHeight := 76
oItem9:EditBorder := 0/*exEditBorderNone*/
oItem9:EditValue := 25
oItem10 := oItems6:Add("",2)
oItem10:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem10:Caption := ""
oItems7 := oItem10:Items()
oItem11 := oItems7:Add("",2)
oItem11:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems8 := oItem11:Items()
oItem12 := oItems8:Add("Button1",2)
oItem12:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems9 := oItem12:Items()
oItems9:Add("Item 1")
oItems9:Add("Item 2")
oItems9:Add("Item 3")
oItems8:Add("",0,0):Padding := "4,0,0,0"
oItem13 := oItems8:Add("Button2",2)
oItem13:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems10 := oItem13:Items()
oItems10:Add("Item 4")
oItems10:Add("Item 5")
oItems10:Add("Item 6")
oItem14 := oItems7:Add("Popup",2)
oItem14:Alignment := 1/*exCenter*/
oItems11 := oItem14:Items()
oItems11:Add("Item 7"):Check := .T.
oItems11:Add("Item 8")
oItems12 := oItems11:Add("Item 9",2):Items()
oItems12:Add("Item 10")
oItems12:Add("Item 11")
oItems12:Add("Item 12")
var_Item4 := oItems1:Add("New Page")
var_Item4:ToString := "[id=0][typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][pad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
var_Item4:ID := 300
var_Item4:Caption := "Page2"
var_Item4:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem15 := var_Item4:Items:Item(0)
oItems13 := oItem15:Items()
oItem16 := oItems13:Add("S1")
oItem16:ItemHeight := 88
oItem16:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem16:EditValue := 25
oItem17 := oItems13:Add("S2")
oItem17:ItemHeight := 88
oItem17:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem17:EditValue := 50
oItem18 := oItems13:Add("S3")
oItem18:ItemHeight := 88
oItem18:AllowEdit := 1540/*exItemEditVertical+exItemEditSpin+exItemEditProgress*/
oItem18:EditValue := 75
oItems1:Add("",0,0):Padding := "8,0,0,0"
oToolBar:PopupFlatAppearance := .F.
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_background.ebn")
oAppearance:Add(2,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_groupt.ebn")
oAppearance:Add(3,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_groupo.ebn")
oAppearance:Add(4,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_grouphot.ebn")
oAppearance:Add(5,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_frameh.ebn")
oAppearance:Add(6,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framehs.ebn")
oAppearance:Add(7,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framehi.ebn")
oAppearance:Add(8,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framehe.ebn")
oAppearance:Add(9,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framevs.ebn")
oAppearance:Add(10,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framevi.ebn")
oAppearance:Add(11,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_frameve.ebn")
oAppearance:Add(12,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_select.ebn")
oAppearance:Add(13,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_bordert.ebn")
oAppearance:Add(14,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_buttond.ebn")
oAppearance:Add(15,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_buttonu.ebn")
oAppearance:Add(16,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_tab.ebn")
oAppearance:Add(17,"CP:16 0 0 0 1")
oAppearance:Add(18,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_tabhot.ebn")
oAppearance:Add(19,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_tabselhot.ebn")
oAppearance:Add(20,"CP:19 0 0 0 1")
oToolBar:SetProperty("ForeColor",AutomationTranslateColor( GraMakeRGBColor ( { 21,66,139 } ) , .F. ))
oToolBar:SetProperty("SelBackColor",0xe000000)
oToolBar:LocalAppearance := 6/*ShadowBorder*/
oToolBar:Appearance := 16777216/*0x1000000+*/
oToolBar:SetProperty("Background",64/*exToolTipAppearance*/,oToolBar:Appearance())
oToolBar:SetProperty("Background",2/*0x2+*/,0xd000000)
oToolBar:SetProperty("Background",105/*exGroupPopupFrameSingle*/,0x5000000)
oToolBar:SetProperty("Background",106/*exGroupPopupFrameHStart*/,0x6000000)
oToolBar:SetProperty("Background",107/*exGroupPopupFrameHIntermediate*/,0x7000000)
oToolBar:SetProperty("Background",108/*exGroupPopupFrameHEnd*/,0x8000000)
oToolBar:SetProperty("Background",116/*exGroupPopupFrameVStart*/,0x9000000)
oToolBar:SetProperty("Background",117/*exGroupPopupFrameVIntermediate*/,0xa000000)
oToolBar:SetProperty("Background",118/*exGroupPopupFrameVEnd*/,0xb000000)
oToolBar:SetProperty("Background",110/*exMenuHotBackColor*/,0xc000000)
oToolBar:SetProperty("Background",112/*exMenuSelHotBackColor*/,0xf000000)
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
185
|
How I can assign buttons to a tab

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1,oItems2,oItems3
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SetProperty("Background",102/*exMenuSelBorderColor*/,AutomationTranslateColor( GraMakeRGBColor ( { 240,240,240 } ) , .F. ))
oItems := oToolBar:Items()
oItems:ToString := "[id=0][group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03](),[id=-99][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-100]))"
oItems1 := oItems:Item(-10):Items()
oItems1:Add("",0,0):Padding := "8,0,0,0"
oItem := oItems1:Add("New Page")
oItem:ToString := "[typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][group=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))"
oItem:Caption := "Page<off -5><font ;5><b>1</b></font></off>"
oItem:ID := -1000
oItems2 := oItem:Items:Item(0):Items()
oItems2:Add("Button 1"):ShowAsButton := 3/*exShowAsButtonAutoSize+exShowAsButton*/
oItems2:Add("Button 2"):ShowAsButton := 3/*exShowAsButtonAutoSize+exShowAsButton*/
oItems2:Add("Button 3"):ShowAsButton := 3/*exShowAsButtonAutoSize+exShowAsButton*/
oItem1 := oItems1:Add("New Page")
oItem1:ToString := "[typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][group=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))"
oItem1:Caption := "Page<off -5><font ;5><b>2</b></font></off>"
oItem1:ID := -1001
oItems3 := oItem1:Items:Item(0):Items()
oItems3:Add("Button 3"):ShowAsButton := 3/*exShowAsButtonAutoSize+exShowAsButton*/
oItems3:Add("Button 4"):ShowAsButton := 3/*exShowAsButtonAutoSize+exShowAsButton*/
oItems1:Add("",0,0):Padding := "8,0,0,0"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
184
|
How can I hide an item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item 1"):Visible := .F.
oItems:Add("Item 2")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
183
|
How do I quickly load items into the control

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ToString := "Check 1[chk],Check 2[chk=1]"
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
182
|
Are there any functions to get the size/width/height of the control so all items fit the control's client area

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item 1")
oItems:Add("Item 2")
oToolBar:Refresh()
DevOut( Transform(oToolBar:RequiredWidth(),"") )
DevOut( Transform(oToolBar:RequiredHeight(),"") )
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
181
|
How do I get the item giving its caption

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item 1"):ID := 1000
oItems:Add("Item 2"):ID := 1001
oToolBar:Item("Item 1"):Bold := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
180
|
How do I get the item giving its identifier

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item 1"):ID := 1000
oItems:Add("Item 2"):ID := 1001
oToolBar:Item(1000):Bold := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
179
|
Can I change the cursor where it hovers the item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:Cursor := "exCross"
oItems := oToolBar:Items()
oItems:Add("Item 1")
oItems:Add("Item 2"):Cursor := "exNoDrop"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
178
|
I am using radio-buttons, the question is it possible to uncheck the radio-buttons, so no button is pressed in the group

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1,oItem2
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:AllowToggleRadio := .T.
oItems := oToolBar:Items()
oItem := oItems:Add("Radio 1",,1000)
oItem:Radio := .T.
oItem:RadioGroup := 100
oItem1 := oItems:Add("Radio 2",,1001)
oItem1:Radio := .T.
oItem1:RadioGroup := 100
oItem2 := oItems:Add("Radio 2",,1003)
oItem2:Radio := .T.
oItem2:RadioGroup := 100
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
177
|
Is it possible to display the item's identifiers

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:Debug := .T.
oItems := oToolBar:Items()
oItems:Add("Item 1"):ID := 10001
oItems:Add("Item 2"):ID := 10002
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
176
|
How do I disable showing the tooltip for all control (method 2)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:AllowToolTip := .F.
oItems := oToolBar:Items()
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
175
|
How can I lock the control, so no events occur, but no shown in gray as Enabled do

PROCEDURE OnSelectItem(oToolBar,Itm)
DevOut( "SelectItem should not be fired while locked" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SelectItem := {|Itm| OnSelectItem(oToolBar,Itm)} /*Occurs when the user selects the item.*/
oToolBar:Locked := .T.
oItems := oToolBar:Items()
oItems:Add("Disabled"):Enabled := .F.
oItems:Add("Item 2")
oItems:Add("Item 3")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
174
|
How can I disable the control

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:Enabled := .F.
oItems := oToolBar:Items()
oItems:Add("Disabled"):Enabled := .F.
oItems:Add("Item 2")
oItems:Add("Item 3")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
173
|
How can I specify a different border/visual appearance for drop down portion of the popup menu (ebn)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems,oItems1,oItems2
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:VisualAppearance():Add(1,"c:\exontrol\images\normal.ebn")
oToolBar:PopupAppearance := 16777216/*0x1000000+*/
oItems := oToolBar:Items()
oItems1 := oItems:Add("Popup 1",2):Items()
oItems1:Add("Item 1"):Check := .T.
oItems1:Add("Item 2"):Check := .T.
oItems1:Add("Item 3"):Check := .T.
oItems2 := oItems:Add("Popup 2",2):Items()
oItems2:Add("Item 4"):Check := .T.
oItems2:Add("Item 5"):Check := .T.
oItems2:Add("Item 6"):Check := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
172
|
How can I specify a different border for drop down portion of the popup menu

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems,oItems1,oItems2
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:PopupAppearance := 6/*ShadowBorder*/
oItems := oToolBar:Items()
oItems1 := oItems:Add("Popup 1",2):Items()
oItems1:Add("Item 1"):Check := .T.
oItems1:Add("Item 2"):Check := .T.
oItems1:Add("Item 3"):Check := .T.
oItems2 := oItems:Add("Popup 2",2):Items()
oItems2:Add("Item 4"):Check := .T.
oItems2:Add("Item 5"):Check := .T.
oItems2:Add("Item 6"):Check := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
171
|
How can I specify a different border/visual appearance for drop down portion of the select buttons/combobox (ebn)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1,oItem2
LOCAL oItems,oItems1,oItems2,oItems3
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:VisualAppearance():Add(1,"c:\exontrol\images\normal.ebn")
oToolBar:LocalAppearance := 16777216/*0x1000000+*/
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItem1 := oItems1:Add("Button",2)
oItem1:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems2 := oItem1:Items()
oItems2:Add("Item 1")
oItems2:Add("Item 2")
oItems2:Add("Item 3")
oItem2 := oItems1:Add("Button",2)
oItem2:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems3 := oItem2:Items()
oItems3:Add("Item 4")
oItems3:Add("Item 5")
oItems3:Add("Item 6")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
170
|
How can I specify a different border for drop down portion of the select buttons/combobox

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1,oItem2
LOCAL oItems,oItems1,oItems2,oItems3
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:LocalAppearance := 6/*ShadowBorder*/
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItem1 := oItems1:Add("Button",2)
oItem1:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems2 := oItem1:Items()
oItems2:Add("Item 1")
oItems2:Add("Item 2")
oItems2:Add("Item 3")
oItem2 := oItems1:Add("Button",2)
oItem2:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems3 := oItem2:Items()
oItems3:Add("Item 4")
oItems3:Add("Item 5")
oItems3:Add("Item 6")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
169
|
How can I change the visual appearance for the entire control

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:VisualAppearance():Add(1,"c:\exontrol\images\normal.ebn")
oToolBar:Appearance := 16777216/*0x1000000+*/
oToolBar:ShowCheckedAsSelected := -1/*exDisplayItemCheckHighlight*/
oItems := oToolBar:Items()
oItems:Padding := "4,4,4,4"
oItem := oItems:Add("Radio 1")
oItem:Radio := .T.
oItem:Checked := .T.
oItems:Add("Radio 2"):Radio := .T.
oItems:Add("Radio 3"):Radio := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
168
|
How can I show a border arround the control
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:Appearance := 1/*FlatBorder*/
oToolBar:ShowCheckedAsSelected := -1/*exDisplayItemCheckHighlight*/
oItems := oToolBar:Items()
oItems:Padding := "4,4,4,4"
oItem := oItems:Add("Check 1")
oItem:Checked := .T.
oItem:Check := .T.
oItem1 := oItems:Add("Check 2")
oItem1:Check := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
167
|
Is it possible to change the item's background color when check/uncheck the item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ShowCheckedAsSelected := -1/*exDisplayItemCheckHighlight*/
oItems := oToolBar:Items()
oItems:Padding := "4,4,4,4"
oItem := oItems:Add("Check 1")
oItem:Checked := .T.
oItem:Check := .T.
oItem1 := oItems:Add("Check 2")
oItem1:Check := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
166
|
How can I change the colors for hot/hover items

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SetProperty("Background",110/*exMenuHotBackColor*/,AutomationTranslateColor( GraMakeRGBColor ( { 0,0,1 } ) , .F. ))
oToolBar:SetProperty("Background",111/*exMenuHotForeColor*/,AutomationTranslateColor( GraMakeRGBColor ( { 255,255,255 } ) , .F. ))
oToolBar:SetProperty("Background",112/*exMenuSelHotBackColor*/,AutomationTranslateColor( GraMakeRGBColor ( { 128,128,128 } ) , .F. ))
oToolBar:SetProperty("Background",113/*exMenuSelHotForeColor*/,AutomationTranslateColor( GraMakeRGBColor ( { 255,255,255 } ) , .F. ))
oToolBar:SetProperty("SelBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 128,128,128 } ) , .F. ))
oToolBar:SetProperty("SelForeColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,255,255 } ) , .F. ))
oToolBar:SetProperty("Background",102/*exMenuSelBorderColor*/,AutomationTranslateColor( GraMakeRGBColor ( { 128,128,128 } ) , .F. ))
oToolBar:ShowCheckedAsSelected := -1/*exDisplayItemCheckHighlight*/
oItems := oToolBar:Items()
oItems:Padding := "4,4,4,4"
oItems:Add(""):ToString := "[group=3](Item 1,Item 2)"
oItem := oItems:Add("Check 1")
oItem:Checked := .T.
oItem:Check := .T.
oItem1 := oItems:Add("Check 2")
oItem1:Check := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
165
|
How do I change the visual appearance of the groups (vertical)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItem,oItem1,oItem2
LOCAL oItems,oItems1,oItems2,oItems3
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oAppearance:Add(3,"c:\exontrol\images\hot.ebn")
oToolBar:SetProperty("Background",105/*exGroupPopupFrameSingle*/,0x1000000)
oToolBar:SetProperty("Background",116/*exGroupPopupFrameVStart*/,0x1000000)
oToolBar:SetProperty("Background",117/*exGroupPopupFrameVIntermediate*/,0x2000000)
oToolBar:SetProperty("Background",118/*exGroupPopupFrameVEnd*/,0x3000000)
oToolBar:SetProperty("Background",109/*exGroupPopupFrameSolid*/,AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItem1 := oItems1:Add("Vertical",2)
oItem1:Alignment := 1/*exCenter*/
oItem1:GroupPopup := 257/*exGroupPopupVertical+exGroupPopup*/
oItems2 := oItem1:Items()
oItems2:Add("Item 1")
oItems2:Add("Item 2")
oItems2:Add("Item 3")
oItems2:Add("Item 4")
oItems2:Add("Item 5")
oItems1:Add(""):CaptionWidth := 12
oItem2 := oItems1:Add("Vertical",2)
oItem2:Alignment := 1/*exCenter*/
oItem2:GroupPopup := 449/*exGroupPopupVertical+exGroupPopupFrameThickBox+exGroupPopupFrameSolidBox+exGroupPopup*/
oItems3 := oItem2:Items()
oItems3:Add("Item 1")
oItems3:Add("Item 2")
oItems3:Add("Item 3")
oItems3:Add("Item 4")
oItems3:Add("Item 5")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
164
|
How do I change the visual appearance of the groups (horizontal)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oAppearance:Add(3,"c:\exontrol\images\hot.ebn")
oToolBar:SetProperty("Background",105/*exGroupPopupFrameSingle*/,0x1000000)
oToolBar:SetProperty("Background",106/*exGroupPopupFrameHStart*/,0x1000000)
oToolBar:SetProperty("Background",107/*exGroupPopupFrameHIntermediate*/,0x2000000)
oToolBar:SetProperty("Background",108/*exGroupPopupFrameHEnd*/,0x3000000)
oToolBar:SetProperty("Background",109/*exGroupPopupFrameSolid*/,AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItems := oToolBar:Items()
oItem := oItems:Add("Horizontal Group",2)
oItem:GroupPopup := 1/*exGroupPopup*/
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems1:Add("Item 4")
oItems1:Add("Item 5")
oItems:Add(""):ToString := "Horizontal Group[group=193](Item 1,Item 2,Item 3,Item 4,Item 5)"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
163
|
How can I change the visual appearance of the separator item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:VisualAppearance():Add(1,"c:\exontrol\images\normal.ebn")
oToolBar:SetProperty("Background",103/*exMenuSeparatorItem*/,0x1000000)
oItems := oToolBar:Items()
oItems:Add("Item"):CaptionWidth := 128
oItems:Add("",1)
oItems:Add("Item"):CaptionWidth := 128
oItems:Add(""):ToString := "<font ;5>separator[sep]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
162
|
How can I change the visual appearance of the drop down of the control (normal.2)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oToolBar:PopupFlatImageWidth := 0
oItems := oToolBar:Items()
oItems1 := oItems:Add("Popup",2):Items()
oItems1:Add("Item 1"):Check := .T.
oItems1:Add("Item 2"):Check := .T.
oItems1:Add("Item 3"):Check := .T.
oItems1:PopupAppearance := 16777216/*0x1000000+*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
161
|
How can I change the visual appearance of the drop down of the control (normal.1)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oToolBar:PopupFlatAppearance := .F.
oItems := oToolBar:Items()
oItems1 := oItems:Add("Popup",2):Items()
oItems1:Add("Item 1"):Check := .T.
oItems1:Add("Item 2"):Check := .T.
oItems1:Add("Item 3"):Check := .T.
oItems1:PopupAppearance := 16777216/*0x1000000+*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
160
|
How can I change the visual appearance of the drop down of the control (flat)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oToolBar:SetProperty("PopupFlatBackColor",0x2000000)
oToolBar:SetProperty("Background",100/*exMenuFlatLineColor*/,oToolBar:PopupFlatBackColor())
oItems := oToolBar:Items()
oItems1 := oItems:Add("Popup",2):Items()
oItems1:Add("Item 1"):Check := .T.
oItems1:Add("Item 2"):Check := .T.
oItems1:Add("Item 3"):Check := .T.
oItems1:PopupAppearance := 16777216/*0x1000000+*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
159
|
How can I change the visual appearance of the flat portion of the drop down of the control

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:VisualAppearance():Add(1,"c:\exontrol\images\normal.ebn")
oToolBar:SetProperty("PopupFlatBackColor",0x1000000)
oToolBar:SetProperty("Background",100/*exMenuFlatLineColor*/,oToolBar:PopupFlatBackColor())
oItems := oToolBar:Items()
oItems1 := oItems:Add("Popup",2):Items()
oItems1:Add("Item 1"):Check := .T.
oItems1:Add("Item 2"):Check := .T.
oItems1:Add("Item 3"):Check := .T.
oItems1:PopupAppearance := 6/*ShadowBorder*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
158
|
How can I change the visual appearance of the radio-buttons to be displayed in the toolbar control (ebn)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItem,oItem1,oItem2,oItem3
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oToolBar:SetProperty("Background",73/*exRadioButtonState0*/,0x1000000)
oToolBar:SetProperty("Background",74/*exRadioButtonState1*/,0x2000000)
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 1/*exGroupPopup*/
oItems1 := oItem:Items()
oItem1 := oItems1:Add("Radio 1",,1000)
oItem1:Radio := .T.
oItem1:RadioGroup := 100
oItem2 := oItems1:Add("Radio 2",,1001)
oItem2:Radio := .T.
oItem2:RadioGroup := 100
oItem3 := oItems1:Add("Radio 2",,1003)
oItem3:Radio := .T.
oItem3:RadioGroup := 100
oItems1:Item(1000):Checked := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
157
|
How can I change the visual appearance of the check-boxes to be displayed in the toolbar control (ebn)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItem,oItem1
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oToolBar:SetProperty("Background",70/*exCheckBoxState0*/,0x1000000)
oToolBar:SetProperty("Background",71/*exCheckBoxState1*/,0x2000000)
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItem1 := oItems1:Add("Check 1")
oItem1:Check := .T.
oItem1:Checked := .T.
oItems1:Add("Check 2"):Check := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
156
|
How can I change the visual appearance of the tooltips to be displayed in the toolbar control (ebn)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oToolBar:ToolTipDelay := 1
oToolBar:SetProperty("Background",64/*exToolTipAppearance*/,0x1000000)
oToolBar:SetProperty("Background",66/*exToolTipForeColor*/,AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItems := oToolBar:Items()
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
155
|
Is it possible to change the visual appearance of the buttons to be displayed in the toolbar control (ebn)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oAppearance
LOCAL oItem,oItem1,oItem2,oItem3
LOCAL oItems,oItems1,oItems2
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oAppearance := oToolBar:VisualAppearance()
oAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oToolBar:SetProperty("Background",2/*0x2+*/,0x1000000)
oToolBar:SetProperty("Background",3/*0x3+*/,0x2000000)
oToolBar:SetProperty("Background",114/*exMenuSeparatorSelectButton*/,AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oToolBar:SetProperty("Background",115/*exMenuSeparatorSelectButtonBottom*/,AutomationTranslateColor( GraMakeRGBColor ( { 0,0,255 } ) , .F. ))
oItems := oToolBar:Items()
oItems:Padding := "4,4,4,4"
oItems:Add("Button"):ShowAsButton := 3/*exShowAsButtonAutoSize+exShowAsButton*/
oItem := oItems:Add("")
oItem:Enabled := .F.
oItem:ItemHeight := 4
oItem1 := oItems:Add("Button",2)
oItem1:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems1 := oItem1:Items()
oItems1:PopupAppearance := 6/*ShadowBorder*/
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItem2 := oItems:Add("")
oItem2:Enabled := .F.
oItem2:ItemHeight := 4
oItem3 := oItems:Add("Button",2)
oItem3:ShowAsButton := 19/*exShowAsSelectButton+exShowAsButtonAutoSize*/
oItems2 := oItem3:Items()
oItems2:PopupAppearance := 6/*ShadowBorder*/
oItems2:Add("Item 1")
oItems2:Add("Item 2")
oItems2:Add("Item 3")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
154
|
I've seen that the width of the tooltip is variable. Can I make it larger

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ToolTipWidth := 328
oItems := oToolBar:Items()
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
153
|
How do I disable showing the tooltip for all control (method 1)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ToolTipDelay := 0
oItems := oToolBar:Items()
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
152
|
How do I let the tooltip being displayed longer

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ToolTipPopDelay := 10000
oItems := oToolBar:Items()
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
151
|
How do I show the tooltip quicker

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:ToolTipDelay := 1
oItems := oToolBar:Items()
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oItems:Add("Item"):Tooltip := "this is a bit of text to be shown when cursor hovers it"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
150
|
How can I get the version of the control I am running

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
DevOut( oToolBar:Version() )
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
149
|
How can I align the picture on the control's background

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:Picture := oToolBar:ExecuteTemplate("loadpicture(`c:\exontrol\images\card.png`)")
oToolBar:PictureDisplay := 2/*UpperRight*/
oItems := oToolBar:Items()
oItems:Add("Item")
oItems:Add("Item")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
148
|
Is it possible to place a picture on the control's background

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:Picture := oToolBar:ExecuteTemplate("loadpicture(`c:\exontrol\images\card.png`)")
oItems := oToolBar:Items()
oItems:Add("Item")
oItems:Add("Item")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
147
|
How can I display the item using a different font/size

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add(""):Caption := "<font ;14>This is a bit of text"
oItems:Add("<font ;6>This is a bit of text")
oItems:Add(""):Caption := "<font Times New Roman;22>This is a bit of text</font>. Default"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
146
|
How can I use the Event event, available for /COM version

PROCEDURE OnEvent(oToolBar,EventID)
DevOut( "Event" )
DevOut( Transform(oToolBar:EventParam(-2),"") )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:Event := {|EventID| OnEvent(oToolBar,EventID)} /*Notifies the application once the control fires an event.*/
oItems := oToolBar:Items()
oItems:Add("Check"):Check := .T.
oItem := oItems:Add("Slider")
oItem:AllowEdit := 3/*exItemEditSlider*/
oItem:EditWidth := 128
oItem:EditBorder := 0/*exEditBorderNone*/
oItem:EditValue := 25
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
145
|
Is it possible to get notified once the user edits the field, or change the slider value

PROCEDURE OnEditChange(oToolBar,Itm)
DevOut( "EditChange event on Itm object" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:EditChange := {|Itm| OnEditChange(oToolBar,Itm)} /*Occurs when the user alters the item's text box field.*/
oItems := oToolBar:Items()
oItem := oItems:Add("Item")
oItem:AllowEdit := 3/*exItemEditSlider*/
oItem:EditWidth := 128
oItem:EditBorder := 0/*exEditBorderNone*/
oItem:EditValue := 25
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
144
|
How do I get notified once I uncheck an item

PROCEDURE OnUncheckItem(oToolBar,Itm)
DevOut( "UncheckItem event on Itm object" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:UncheckItem := {|Itm| OnUncheckItem(oToolBar,Itm)} /*Occurs when the user unchecks the item.*/
oItems := oToolBar:Items()
oItems:Add("Item"):Check := .T.
oItems:Add("Item"):Check := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
143
|
How do I get notified once I check an item

PROCEDURE OnCheckItem(oToolBar,Itm)
DevOut( "CheckItem event on Itm object" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:CheckItem := {|Itm| OnCheckItem(oToolBar,Itm)} /*Occurs when the user checks the item.*/
oItems := oToolBar:Items()
oItems:Add("Item"):Check := .T.
oItems:Add("Item"):Check := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
142
|
How do I get notified once I click/select an item

PROCEDURE OnSelectItem(oToolBar,Itm)
DevOut( "SelectItem event on Itm object" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SelectItem := {|Itm| OnSelectItem(oToolBar,Itm)} /*Occurs when the user selects the item.*/
oItems := oToolBar:Items()
oItems:Add("Item")
oItems:Add("Item")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
141
|
Does your control support padding for items

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:PopupFlatAppearance := .F.
oItems := oToolBar:Items()
oItems:Padding := "2,12,2,2"
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,255,255 } ) , .F. ))
oItems:BackgroundExt := "root[pattern=0x000,frame=RGB(128,128,128)](top[2],top[10,text=`<font ;6><fgcolor 808080> group </font></fgcolor>`,align=0x11])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
140
|
How can I display the drop down popup to a different position ( method 2 )

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Popup",2,100)
oItem:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem:ShowPopupArrow := .F.
oItem:ShowPopupOffset := "-12,-48"
oItems1 := oItem:Items()
oItems1:PopupAppearance := 3/*RaisedBorder*/
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
139
|
How can I display the drop down popup to a different position ( method 1 )

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1,oItem2
LOCAL oItems,oItems1,oItems2,oItems3
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 1/*exGroupPopup*/
oItems1 := oItem:Items()
oItem1 := oItems1:Add("Popup 1",2,100)
oItem1:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem1:ShowPopupArrow := .F.
oItems2 := oItem1:Items()
oItems2:PopupAppearance := 3/*RaisedBorder*/
oItems2:Add("Item 1")
oItems2:Add("Item 2")
oItems2:Add("Item 3")
oItem2 := oItems1:Add("Popup 2",2,200)
oItem2:ShowPopupAt := 100
oItem2:ShowPopupArrow := .F.
oItems3 := oItem2:Items()
oItems3:PopupAppearance := 3/*RaisedBorder*/
oItems3:Add("Item 4")
oItems3:Add("Item 5")
oItems3:Add("Item 6")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
138
|
Is it possible to show the popup bellow to the item, rather than on the right side

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Popup",2)
oItem:ShowPopupAlign := 1/*exShowPopupAlignDown*/
oItem:ShowPopupArrow := .F.
oItems1 := oItem:Items()
oItems1:PopupAppearance := 1/*FlatBorder*/
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "Popup[arrow=0][popupalign=1][popupapp=1](Item 1,Item 2,Item 3)"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
137
|
How can I change the visual appearance for items, when cursor hovers it (hot,EBN)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:VisualAppearance():Add(1,"c:\exontrol\images\normal.ebn")
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:SetProperty("HotBackColor",0x1000000)
oItems1:Padding := "4,8,4,8"
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "[group=0x03][itemspad=4,8,4,8][itemsbghot=0x1000000](Item 1,Item 2,Item 3)"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
136
|
How can I change the background color for items, when cursor hovers it (hot)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:SetProperty("HotBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItems1:Padding := "0,8,0,8"
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "[group=0x03][itemspad=0,8,0,8][itemsbghot=RGB(255,0,0)](Item 1,Item 2,Item 3)"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
135
|
How can I change the visual appearance for items (EBN)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:VisualAppearance():Add(1,"c:\exontrol\images\normal.ebn")
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:SetProperty("BackColor",0x1000000)
oItems1:Padding := "4,8,4,8"
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "[group=0x03][itemspad=4,8,4,8][itemsbg=0x1000000](Item 1,Item 2,Item 3)"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
134
|
How can I change the background color for items

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItems1:Padding := "0,8,0,8"
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "[group=0x03][itemspad=0,8,0,8][itemsbg=RGB(255,0,0)](Item 1,Item 2,Item 3)"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
133
|
Is it possible to hide the popup's arrow

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Popup",2)
oItem:ShowPopupArrow := .F.
oItems1 := oItem:Items()
oItems1:PopupAppearance := 6/*ShadowBorder*/
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
132
|
How do I hide the left gray portion to be shown on the drop down menu/popup (method 2)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:PopupFlatImageWidth := 0
oItems := oToolBar:Items()
oItems1 := oItems:Add("Popup",2):Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems1:PopupAppearance := 6/*ShadowBorder*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
131
|
How do I hide the left gray portion to be shown on the drop down menu/popup (method 1)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:PopupFlatAppearance := .F.
oItems := oToolBar:Items()
oItems1 := oItems:Add("Popup",2):Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems1:PopupAppearance := 6/*ShadowBorder*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
130
|
How can I arrange the drop down item from left to right, rather than top to bottom

PROCEDURE OnSelectItem(oToolBar,Itm)
DevOut( "Clicked" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1,oItems2
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SelectItem := {|Itm| OnSelectItem(oToolBar,Itm)} /*Occurs when the user selects the item.*/
oToolBar:PopupFlatAppearance := .F.
oItems := oToolBar:Items()
oItem := oItems:Add("Button",2)
oItem:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems1 := oItem:Items()
oItems1:PopupAppearance := 6/*ShadowBorder*/
oItem1 := oItems1:Add("",2)
oItem1:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems2 := oItem1:Items()
oItems2:Add("Item 1")
oItems2:Add("Item 2")
oItems2:Add("Item 3")
oItems:Add(""):ToString := "Button[button=0x0113][popupapp=6]([group=0x03](Item 1,Item 2,Item 3))"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
129
|
How can I add a drop down button / combobox (method 2)

PROCEDURE OnSelectItem(oToolBar,Itm)
DevOut( "Clicked" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SelectItem := {|Itm| OnSelectItem(oToolBar,Itm)} /*Occurs when the user selects the item.*/
oItems := oToolBar:Items()
oItem := oItems:Add("Button",2)
oItem:ShowAsButton := 275/*exShowAsSelectButtonBottom+exShowAsButtonAutoSize*/
oItems1 := oItem:Items()
oItems1:PopupAppearance := 6/*ShadowBorder*/
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "Button[button=275][popupapp=6](Item 1[id=20],Item 2[id=30],Item 3[id=40])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
128
|
How can I add a drop down button / combobox (method 1)

PROCEDURE OnSelectItem(oToolBar,Itm)
DevOut( "Clicked" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SelectItem := {|Itm| OnSelectItem(oToolBar,Itm)} /*Occurs when the user selects the item.*/
oItems := oToolBar:Items()
oItem := oItems:Add("Button",2)
oItem:ShowAsButton := 19/*exShowAsSelectButton+exShowAsButtonAutoSize*/
oItems1 := oItem:Items()
oItems1:PopupAppearance := 6/*ShadowBorder*/
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "Button[button=0x13][popupapp=6](Item 1[id=20],Item 2[id=30],Item 3[id=40])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
127
|
I am using exShowAsSelectButton/exShowAsSelectButtonBottom but none of them works. What could be wrong

PROCEDURE OnSelectItem(oToolBar,Itm)
DevOut( "Clicked" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SelectItem := {|Itm| OnSelectItem(oToolBar,Itm)} /*Occurs when the user selects the item.*/
oItems := oToolBar:Items()
oItem := oItems:Add("Button",2)
oItem:ShowAsButton := 19/*exShowAsSelectButton+exShowAsButtonAutoSize*/
oItems1 := oItem:Items()
oItems1:PopupAppearance := 6/*ShadowBorder*/
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
126
|
How can I add a button (push button)

PROCEDURE OnSelectItem(oToolBar,Itm)
DevOut( "Clicked" )
RETURN
#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oToolBar:SelectItem := {|Itm| OnSelectItem(oToolBar,Itm)} /*Occurs when the user selects the item.*/
oItems := oToolBar:Items()
oItems:Add("Button"):ShowAsButton := 3/*exShowAsButtonAutoSize+exShowAsButton*/
oItems:Add(""):ToString := "Button[button=0x03]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
125
|
How can I display grouping items with no frame arround

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Horizontal Group",2)
oItem:GroupPopup := 243/*exGroupPopupFrameThickBox+exGroupPopupFrameSolidBox+exGroupPopupEqualHeight+exGroupPopupEqualWidth+exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:Add("A"):Alignment := 1/*exCenter*/
oItems1:Add("BC"):Alignment := 1/*exCenter*/
oItems1:Add("D"):Alignment := 1/*exCenter*/
oItems:Add(""):ToString := "Horizontal Group[group=243](A[id=20][align=1],BC[id=30][align=1],D[id=40][align=1])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
124
|
How can I display grouping items of the same size/width/height

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Horizontal Group",2)
oItem:GroupPopup := 241/*exGroupPopupFrameThickBox+exGroupPopupFrameSolidBox+exGroupPopupEqualHeight+exGroupPopupEqualWidth+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:Add("A"):Alignment := 1/*exCenter*/
oItems1:Add("BC"):Alignment := 1/*exCenter*/
oItems1:Add("D"):Alignment := 1/*exCenter*/
oItems:Add(""):ToString := "Horizontal Group[group=0xF1](A[id=20][align=1],BC[id=30][align=1],D[id=40][align=1])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
123
|
Is it possible to display a ticker frame arround grouping items

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Horizontal Group",2)
oItem:GroupPopup := 193/*exGroupPopupFrameThickBox+exGroupPopupFrameSolidBox+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "Horizontal Group[group=193](Item 1[id=20],Item 2[id=30],Item 3[id=40])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
122
|
How do I display items horizontally arranged

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Horizontal Group",2)
oItem:GroupPopup := 1/*exGroupPopup*/
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems:Add(""):ToString := "Horizontal Group[group=0x01](Item 1[id=20],Item 2[id=30],Item 3[id=40])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
121
|
Is it possible to expand an item when it is clicked (tree,group,vertical)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Expand",2)
oItem:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem:Check := .T.
oItem:ShowPopupOnChecked := .T.
oItems1 := oItem:Items()
oItems1:Padding := "22,0,0,0"
oItems1:Add("Radio 1"):Radio := .T.
oItems1:Add("Radio 2"):Radio := .T.
oItem1 := oItems1:Add("Radio 3")
oItem1:Radio := .T.
oItem1:Checked := .T.
oItem:Checked := .T.
oItems:Add(""):ToString := "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=2][chk=1])"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
120
|
Is it possible to expand an item when it is clicked (tree,group,vertical)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Expand",2)
oItem:GroupPopup := 259/*exGroupPopupVertical+exNoGroupPopupFrame+exGroupPopup*/
oItem:Check := .T.
oItem:ShowPopupOnChecked := .T.
oItems1 := oItem:Items()
oItems1:Padding := "22,0,0,0"
oItems1:Add("Radio 1"):Radio := .T.
oItems1:Add("Radio 2"):Radio := .T.
oItem1 := oItems1:Add("Radio 3")
oItem1:Radio := .T.
oItem1:Checked := .T.
oItem:Checked := .T.
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
119
|
Is it possible to expand an item when it is clicked (group)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Expand",2)
oItem:GroupPopup := 1/*exGroupPopup*/
oItem:ItemHeight := 24
oItem:Check := .T.
oItem:ShowPopupOnChecked := .T.
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems1:PopupAppearance := 6/*ShadowBorder*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
118
|
Is it possible to extend an item when it is clicked

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Expand",2)
oItem:Check := .T.
oItem:ShowPopupOnChecked := .T.
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItems1:Add("Item 2")
oItems1:Add("Item 3")
oItems1:PopupAppearance := 6/*ShadowBorder*/
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
117
|
Does your control implement padding for item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 250,250,250 } ) , .F. ))
oItems:Add("Item"):Padding := "4,4,4,4"
oItems:Add(""):ToString := "Item[pad=4,4,4,4]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
116
|
How can I add an empty item for a horizontal group

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1,oItem2
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItems1:Add("Item 1")
oItem1 := oItems1:Add("",2)
oItem1:GroupPopup := 5/*exGroupPopupCenter+exGroupPopup*/
oItem1:ItemHeight := 12
oItem2 := oItem1:Items():Add("")
oItem2:Enabled := .F.
oItem2:ItemHeight := 8
oItem2:CaptionWidth := 8
oItems1:Add("Item 2")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
115
|
How can I add an empty/separator item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item")
oItem := oItems:Add("")
oItem:Enabled := .F.
oItem:ItemHeight := 2
oItem:CaptionWidth := 8
oItem:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 240,240,240 } ) , .F. ))
oItems:Add("Item")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
114
|
How can I add an empty/frame item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item 1")
oItem := oItems:Add("",2)
oItem:GroupPopup := 5/*exGroupPopupCenter+exGroupPopup*/
oItem:ItemHeight := 12
oItem1 := oItem:Items():Add("")
oItem1:Enabled := .F.
oItem1:ItemHeight := 8
oItem1:CaptionWidth := 8
oItems:Add("Item 2")
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
113
|
How can I specify the height of the item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 250,250,250 } ) , .F. ))
oItems:Add("Item"):ItemHeight := 64
oItems:Add(""):ToString := "Item[height=64]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
112
|
How can I specify the width of the item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 250,250,250 } ) , .F. ))
oItems:Add("Item"):CaptionWidth := 128
oItems:Add(""):ToString := "Item[captionwidth=128]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
111
|
How do I align the item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor ( { 250,250,250 } ) , .F. ))
oItems:Add("Item")
oItem := oItems:Add("Item")
oItem:Alignment := 1/*exCenter*/
oItem:CaptionWidth := 128
oItem1 := oItems:Add("Item")
oItem1:Alignment := 2/*exRight*/
oItem1:CaptionWidth := 128
oItems:Add(""):ToString := "Item[align=1]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
110
|
How can I underline the item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item"):Underline := .T.
oItems:Add("<u>Item</u>")
oItems:Add(""):ToString := "Item[und]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
109
|
How can I show the item as strikeout

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item"):Strikeout := .T.
oItems:Add("<s>Item</s>")
oItems:Add(""):ToString := "Item[stk]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
108
|
How can I show the item in italics

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item"):Italic := .T.
oItems:Add("<i>Item</i>")
oItems:Add(""):ToString := "Item[itl]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
107
|
How can I show the item in bold

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item"):Bold := .T.
oItems:Add("<b>Item</b>")
oItems:Add(""):ToString := "Item[bld]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
106
|
How can I show the item as disabled but still be able to select or use it

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item"):ShowAsDisabled := .T.
oItems:Add(""):ToString := "Item[showdis=1]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
105
|
How can I enable or disable an item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item"):Enabled := .F.
oItems:Add(""):ToString := "Item[dis]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
104
|
How can I add a separator item

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item"):CaptionWidth := 128
oItems:Add("<font ;6>separator",1)
oItems:Add("Item"):CaptionWidth := 128
oItems:Add(""):ToString := "<font ;6>separator[sep]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
103
|
How can I change the item's foreground color

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItems:Add("Item"):SetProperty("ForeColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItems:Add("<fgcolor FF0000>Item")
oItems:Add(""):ToString := "Item[fg=RGB(255,0,0)]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
102
|
How can I change the item's background/backcolor, when the item is selected/checked (radio-buttons)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem,oItem1,oItem2
LOCAL oItems,oItems1
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("",2)
oItem:GroupPopup := 3/*exNoGroupPopupFrame+exGroupPopup*/
oItems1 := oItem:Items()
oItem1 := oItems1:Add("Radio 1")
oItem1:SetProperty("HotBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,255,255 } ) , .F. ))
oItem1:SetProperty("SelBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItem1:SetProperty("SelHotBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItem1:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem1:Radio := .T.
oItem1:RadioGroup := 100
oItem1:Checked := .T.
oItem2 := oItems1:Add("Radio 2")
oItem2:SetProperty("HotBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,255,255 } ) , .F. ))
oItem2:SetProperty("SelBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItem2:SetProperty("SelHotBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItem2:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem2:Radio := .T.
oItem2:RadioGroup := 100
oItems1:Add(""):ToString := "Radio 3[typ=2][show=1][grp=100][bghot=RGB(255,255,255)][bgsel=RGB(255,0,0)][bgselhot=RGB(255,0,0)]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|
101
|
How can I change the item's background/backcolor, when the item is selected/checked (check-box)

#include "AppEvent.ch"
#include "ActiveX.ch"
PROCEDURE Main
LOCAL oForm
LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
LOCAL oItem
LOCAL oItems
LOCAL oToolBar
oForm := XbpDialog():new( AppDesktop() )
oForm:drawingArea:clipChildren := .T.
oForm:create( ,,{100,100}, {640,480},, .F. )
oForm:close := {|| PostAppEvent( xbeP_Quit )}
oToolBar := XbpActiveXControl():new( oForm:drawingArea )
oToolBar:CLSID := "Exontrol.ToolBar.1" /*{8A047308-84CB-4B50-90D7-AFD27BB4639C}*/
oToolBar:create(,, {10,60},{610,370} )
oItems := oToolBar:Items()
oItem := oItems:Add("Check 1")
oItem:SetProperty("HotBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,255,255 } ) , .F. ))
oItem:SetProperty("SelBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItem:SetProperty("SelHotBackColor",AutomationTranslateColor( GraMakeRGBColor ( { 255,0,0 } ) , .F. ))
oItem:ShowCheckedAsSelected := 1/*exDisplayItemHighlight*/
oItem:Checked := .T.
oItem:Check := .T.
oItems:Add(""):ToString := "Check 2[typ=1][chk=0][show=1][bghot=RGB(255,255,255)][bgsel=RGB(255,0,0)][bgselhot=RGB(255,0,0)]"
oToolBar:Refresh()
oForm:Show()
DO WHILE nEvent != xbeP_Quit
nEvent := AppEvent( @mp1, @mp2, @oXbp )
oXbp:handleEvent( nEvent, mp1, mp2 )
ENDDO
RETURN
|